home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / ContinueLoop.au3 < prev    next >
Text File  |  2007-09-08  |  180b  |  8 lines

  1. ;Print all numbers from 1 to 10 except number 7
  2. For $i = 1 to 10
  3.     If $i = 7 Then ContinueLoop
  4.     MsgBox(0, "The value of $i is:", $i)
  5. Next
  6.  
  7. ;Example of using level is needed.
  8.